Welcome![Sign In][Sign Up]
Location:
Search - system file java

Search list

[JSP/JavaMediaStore

Description: Java版音像店管理系统 安装步骤: (1) 安装jdk1.4 (2) 安装tomcat5.0 (3) 安装Microsoft SQL server 2000 (4) 利用MediaStore/sql/db_init.sql文件,创建数据表,并导入初始化数据 (5) 将MediaStore文件夹,整个拷贝到tomcat5.0/webapps目下,并打开MediaStore/WEB-INF/web.xml文件,设置访问数据库的dburl、user和password三个参数。 (6) 启动tomcat5.0,打开浏览器,在地址栏中输入http://localhost:8080/MediaStore,即可进入登录界面,输入admin,密码为空,进入系统。 -Installation steps: (1) install jdk1.4 (2) install tomcat5.0 (3) installation of Microsoft SQL server 2000 (4) the use of MediaStore/sql/db_init.sql document, create a data table, and import data initialization ( 5) MediaStore folder to copy the entire tomcat5.0/webapps under, and open MediaStore/WEB-INF/web.xml file, set the access database dburl, user and password parameters. (6) to start tomcat5.0, open the browser, enter in the address bar http://localhost:8080/MediaStore, you can enter the login screen, enter admin, password is empty, enter the system.
Platform: | Size: 9394176 | Author: 谭骏 | Hits:

[CSharp1

Description: 参照PGP,实现一个文件加密系统,包括对称加密,非对称加密和数字签名等功能。 可选开发语言工具:Openssl VC .net java -Reference to PGP, the realization of a file encryption system, including symmetric encryption, asymmetric encryption and digital signature functions. Optional tool for the development of language: Openssl VC. Net java
Platform: | Size: 6052864 | Author: Albin | Hits:

[JSP/Javastuden

Description: 使用JAVA开发的一种学生档案管理系统。在前台主界面上显示数据库中存放的学生的基本信息,由特定权限的管理员或者用户登录后通过按钮或菜单对学生的信息进行录入、修改、查询、删除等功能。-JAVA development using a file management system for students. In the foreground shows the main interface of the students kept the database of basic information, specific permission from the administrator or the users log in through the button or menu information to students entry, modify, query, delete functions.
Platform: | Size: 2287616 | Author: 曾子 | Hits:

[transportation applicationsATS

Description: 使用Java编写的航空订票系统,是基于文件系统的,界面美观,功能强大。-Java prepare the use of air booking system is based on the file system, the interface appearance and powerful.
Platform: | Size: 1521664 | Author: liu | Hits:

[JSP/Javajsp_and_excel

Description: 前段时间,客户要求我们的系统可以实现与ms excel的数据交换,可以把系统中的数据导入导出到excel.我们的系统是一个用java做的b/s结构的MIS系统.为了解决这个问题,我采用了专门操作excel的开源项目jxl 根据客户的要求,用jxl实现了如下功能: 1:在客户端读取excel文件的数据 2:把系统数据导出到excel模板文件中. -Earlier, the customer can ask our system with ms excel data exchange system can import and export data to excel. Our system is a java to do with b/s structure of the MIS system. To solve this problem I used excel to operate specialized jxl of the open source project based on customer requirements, using jxl to achieve the following functions: 1: the client to read excel file data 2: Export the data to excel template file.
Platform: | Size: 2037760 | Author: tyxhlw | Hits:

[JSP/Javasourcejammer-src-2.1.0.0.gpl

Description: SourceJammer-是一个纯Java的源码与版本控制系统。它包括一个服务端组件用来管理文件及版本历史,处理登入,登出等和其它命令;一个客户端组件用来处理对服务器的请求及管理在客户端文件系统上的文件。-SourceJammer-is a pure Java source code and version control system. It includes a server component used to manage documents and versions of history, to deal with login, logout, etc. and other commands a client component used to process the request on the server and the management of the client files on the file system.
Platform: | Size: 4496384 | Author: Rubbish | Hits:

[JSP/JavaJava.III.CodePermissions

Description: Code permissions in Java can be granted by 2 criterias - Location and Signer. The resulting permission set is the union of all grants, which are applicable to a class. Checks are performed only imperatively, in code, and new permissions can easily be added to the system. An explanation of the example: 1. DemoPub.keystore contains the key of the demo publisher 2. The PermissionCheck class checks for AccessProfileInfoPermission and specific operation 3. The permission is granted based on location or signature 4. If jar file is not signed, the signature clause is not granted, and the check fails 5. Signing the jar enables passing checks for all operations-Code permissions in Java can be granted by 2 criterias- Location and Signer. The resulting permission set is the union of all grants, which are applicable to a class. Checks are performed only imperatively, in code, and new permissions can easily be added to the system. An explanation of the example: 1. DemoPub.keystore contains the key of the demo publisher 2. The PermissionCheck class checks for AccessProfileInfoPermission and specific operation 3. The permission is granted based on location or signature 4. If jar file is not signed, the signature clause is not granted, and the check fails 5. Signing the jar enables passing checks for all operations
Platform: | Size: 3072 | Author: neo | Hits:

[JSP/JavaJava.PrivilegedCode

Description: Privileged code in Java is a "all-or-nothing" proposition. While it does allow a normal user to execute some operations that would notmally require granting higher privileges (like viewing files in his particular directory), it may have a side-effect of exposing undesired operations, which can open up a security hole in the system. An explanation of the example: 1. Operations class contains file-related methods - listing of all files and deleting a file 2. PrivilegedCode class is a privileged wrapper around those operations 3. Both of those classes are combined into a single jar, which is granted high level of trust 4. Normally, any file operations require granting a special permission, so an attempt to directly execute calls on Operations class by an untrusted client fails 5. However, when the same untrusted client executes the same operations through the privileged interface, it succeeds, including deleting an arbitrary file passed on command line-Privileged code in Java is a "all-or-nothing" proposition. While it does allow a normal user to execute some operations that would notmally require granting higher privileges (like viewing files in his particular directory), it may have a side-effect of exposing undesired operations, which can open up a security hole in the system. An explanation of the example: 1. Operations class contains file-related methods- listing of all files and deleting a file 2. PrivilegedCode class is a privileged wrapper around those operations 3. Both of those classes are combined into a single jar, which is granted high level of trust 4. Normally, any file operations require granting a special permission, so an attempt to directly execute calls on Operations class by an untrusted client fails 5. However, when the same untrusted client executes the same operations through the privileged interface, it succeeds, including deleting an arbitrary file passed on command line
Platform: | Size: 2048 | Author: neo | Hits:

[JSP/Javaeditor

Description: 基于java的文本编辑器,功能齐全,带windows的文件对话框,可以更改选中的字体属性等,可插入图片,含系统托盘-Java-based text editor, full-featured, with the windows file dialog, you can change the font attributes, such as select, insert pictures, including the system tray
Platform: | Size: 86016 | Author: feng | Hits:

[Applications03

Description: 企业人事管理系统提供源代码和配置说明步骤,数据库源文件,sql数据库文件-Personnel management system source code and configuration steps, the database source file, sql database file
Platform: | Size: 881664 | Author: 李海超 | Hits:

[JSP/JavanewExplorer

Description: 用java编写的系统资源管理器,有基础的文件夹及文件操作功能-Prepared using java system resources manager and has the foundation to the folder and file manipulation functions
Platform: | Size: 89088 | Author: 莫玉辉 | Hits:

[JSP/Javahjblong

Description: 。支持各种操作系统(windows, Linux, Unix),或租用java空间 2。各种数据库(MySQL, SQL SERVER, Oracle, DB2)。 3。应用服务器Tomcat. Resin, WEBsphere, WEB Logic. 系统功能介绍: 1。播客节目发布管理系统 2。文件管理 3。个性化模版定义功能。可以定制你喜欢的网站风格和样式 4。完全支持RSS订阅,可以兼容iPod+iTunes 5。内置Flash多媒体播放器 6。手机格式(3gp)文件转换 7。论坛 8。标签 9。站内检索功能 10。留言言评论管理 11。节目投票系统 12。用户管理系统 13。防盗链插件 -. Supports a variety of operating systems (windows, Linux, Unix), or rent java space 2. Various databases (MySQL, SQL SERVER, Oracle, DB2). 3. Application server Tomcat. Resin, WEBsphere, WEB Logic. System Features: 1. Podcast Management System Release 2. File Manager 3. Personalized template function definition. Can be customized website you like the style and the style 4. Full support for RSS subscriptions, can be compatible with iPod+ iTunes 5. Flash multimedia player with built-6. Phone format (3gp) file conversion 7. Forum 8. Tags 9. Search function 10. Comments made by the management of 11 messages. 12 shows the voting system. User management system 13. Anti-navigating to www.sina.com.cn. plug-ins
Platform: | Size: 145408 | Author: 小阳 | Hits:

[ERP-EIP-OA-PortalPersonnelManage

Description: Java版的企业人事管理系统完整版源码,采用Oracle数据库,运行于Eclipse,压缩包内附有配置文档和系统说明。这套系统可完成档案管理、人事管理、考勤管理、工资管理、用户管理、财务报表等功能。界面漂亮友好,是学习的第一手资料。-Java Enterprise Edition full version of the personnel management system source code, using Oracle database, running on Eclipse, compressed package containing configuration files and system have a description. To be completed by the file system management, personnel management, attendance management, wage management, user management, financial statements and other functions. Beautiful and friendly interface, is to learn first-hand information.
Platform: | Size: 894976 | Author: 邱浩淼 | Hits:

[J2ME27189_J2ME

Description: 《J2ME手机高级编程》从J2ME手机平台的当前主流应用和发展趋势出发,立足实际的开发案例,介绍了J2ME手机平台开发的实用技术和应用模式。本书的内容主要包括:手机文件系统、网络通信、无线通信(短信通信、彩信通信和蓝牙通信)、底层用户界面应用(游戏开发和电子地图浏览)、多媒体编程(音乐播放器、视频播放器和摄像头视频采集等)、持久化应用、移动商务应用(对象数据库Db4o和嵌入式关系型数据库Derby)和XML模型应用等。-" J2ME mobile high-level programming" from the J2ME platform for mobile phone use and development of current trends in the mainstream, the case based on the actual development on the J2ME platform for the development of mobile phone technology and the practical application mode. The contents of this book include: mobile phone file system, network communications, wireless communications (SMS communications, multimedia communications and Bluetooth communication), the bottom of the user interface application (game development and e-map browser), multimedia programming (music player, video player and video capture camera, etc.), durable applications, mobile business applications (Db4o object-oriented database and relational database embedded Derby) and the application of XML model.
Platform: | Size: 714752 | Author: | Hits:

[JSP/Javacodefans.net

Description: Java课程设计作业——固定资产管理系统,Eclipse+SERVER2000构架,比较综合的Java编程实战,学习Swing的好资料,SQL库文件在AMSConfiguration\db目录下,附加即可-Java curriculum design operation- Fixed Assets Management System, Eclipse+ SERVER2000 framework of a more integrated actual Java programming, learning Swing good information, SQL database file in AMSConfiguration \ db directory, can be attached
Platform: | Size: 1406976 | Author: efun | Hits:

[JSP/Java02

Description: 系统介绍 企业内部通讯系统必须提供网络通讯功能、在通讯过程中禁止使用聊天表情、文件传送等功能,避免资料外泄,或因发送错误而导致上级资料的丢失以及其他损失。最重要的是必须适应任何操作系统,也就是实现跨平台技术,因为企业内部的工作需要,工作环境中使用了多个操作系统来完成不同的工作。另外,系统不需要使用服务器中转和记录通讯内容,可以独立完成通讯任务,排除职工对领导监视工作进度等逆反心理。 操作流程 使用本程序时,请按以下步骤操作: (1)单击“系统设置”选项卡,设置系统、IP搜索范围和服务器登录设置。如图1.4所示。 图1.4 系统设置 图1.5 用户搜索 (2)单击“系统操作”选项卡,搜索新的用户,如图1.5所示,如果你知道对方的IP地址,单击“用户列表”选项卡,选中其中的一个用户单击鼠标右键弹出快捷菜单,如图1.6所示。在该菜单中,可对用户信息进行添加、删除、用户更名、访问主机资源及公共程序等操作。 -System Introduction Internal communication systems to provide network communication capabilities in the communication process of prohibiting the use of chat expressions, file transfer and other functions, to prevent data leakage, or send an error which led to a higher level due to the loss of information, as well as other losses. The most important is the need to adapt to any operating system, which is cross-platform technology, as companies need to work within the working environment in the use of multiple operating systems to perform different tasks. In addition, the system does not require the use of a server transfer and recording of communications content, and could complete the communication task, excluding employees of the leadership to monitor the progress of work, etc. Reverse Psychology. Operational processes Using this program, please follow these steps: (1) Click "System Settings" tab, set the system, IP search range and server login settings. As shown i
Platform: | Size: 330752 | Author: 陆亦军 | Hits:

[ERP-EIP-OA-Portalmis25

Description: 这是我们在考NITPro证之前做的一个亿阳信通中国移动信息系统 功能完善(权限管理(超级管理员为普通用户分配权限),机房管理,人员管理,日志文档管理)查看详细信息,增,删,改等主要功能; 开发工具:MyEclipse6.5+Oracle9+Tomcat6.0 所使用到技术:Sturts+Spring+Hibernate 数据库使用名:ora9i 数据库用户名:mis 密码:accp 在将mis.sql文件直接导入Oracle数据库中 只有通过index.jsp登陆以后才能进入本系统, 登陆账号ID:1101, 密码:tomcat 只要按照上述要求,本系统即可直接使用。 默认工程名为mis 可能由于个人能力及精力 还有时间短促(应老师要求要在一个星期之类做完)有限可能会有少些方面未考虑全面, 还望大家多多指点 如有什么不懂的地方 请联系方式: QQ:381390051 Email:liu5yong20ping@163.com-This is what we do before the test NITPro permit a BOCO China Mobile Information System (jsp) Functional improvement (Rights Management (super administrator to assign permissions for ordinary users), room management, personnel management Li, the log file management) View more information, increase, delete, change and other major functions Development Tools: MyEclipse6.5+ Oracle9+ Tomcat6.0   The use of technology: Sturts+ Spring+ Hibernate   The database using the name: ora9i   Database user name: mis Password: accp   In the mis.sql files directly into Oracle Database   It is only through index.jsp after login to enter this system,   Login Account ID: 1101, password: tomcat As long as the above-mentioned requirements, the system can be used directly. The default works entitled mis
Platform: | Size: 22245376 | Author: 刘勇平 | Hits:

[JSP/JavaBookManageSystem

Description: 图书管理系统,采用Java开发,数据库是mysql 在前台页面开发中采用了Struts,后台采用了Hibernate+Spring 数据库的用户名密码在配置文件中,实现了对书籍的增加删除和修改-Library management system, using Java development, database is mysql the front page development using Struts, the background database using Hibernate+ Spring user name password in the configuration file to achieve the increase of books, delete and modify the
Platform: | Size: 7101440 | Author: fanlitao | Hits:

[JSP/Javajavaxmlalert

Description: Java+XML日程提醒系统。Java+xml的一个综合实例。xml用于存储日程数据,这个实例包含了Java对XML文件的读、写、添、删等操作。并可以了解到JAVA通过线程机制提供的多种提醒方式。-Java+ XML calendar reminder system. Java+ xml instance of a comprehensive. xml used to store schedule data, this example of the XML file contains a Java read, write, Tim, delete and other operations. And can learn JAVA threading mechanism through a variety of reminder methods.
Platform: | Size: 3499008 | Author: 208 | Hits:

[JSP/JavaJavaStudentSystem

Description: 用Java开发的学生信息管理系统,含EXE执行文件+源码包,以及MSSQL2000数据库文件,运行或调试程序时需要先把数据库附加好。   这款基于Java的学生信息系统可以完成学籍管理、班级管理、课程管理、成绩管理、用户登录等,另外它还具有比较修改一点功能,就是它可以适时更换系统背景,打开/关闭音乐等功能。如果要学习的话,不失为一套综合实例的参考资料。 -Java Development with the student information management system, including the implementation of EXE files+ source package, as well as MSSQL2000 database file, run or debug the program should first attach the database needed well. The Java-based student information systems can complete the student status management, class management, curriculum management, performance management, user login, etc., in addition, changes that have a comparative feature is that it can be a timely replacement of the system background, the open/close music, and other functions. If you want to learn, then, after all instances of a comprehensive set of references.
Platform: | Size: 4679680 | Author: 李云峰 | Hits:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 29 »

CodeBus www.codebus.net